home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
3D Images
/
3D Images.iso
/
programs
/
amiga
/
rayshade
/
libextra
/
hypot.c
next >
Wrap
C/C++ Source or Header
|
1995-01-12
|
102b
|
8 lines
#include <math.h>
const double
hypot (const double x, const double y)
{
return sqrt (x*x + y*y);
}